/* 탭 버튼 스타일 */
.tab-buttons { margin-bottom: 10px; text-align: center;}
.tab-button { padding: 10px 15px; cursor: pointer; background-color: #1c304a; color:#fff; border-radius: 5px; margin-right: 5px; }

/* 활성화된 탭 버튼 스타일 */
.tab-button.active { background-color: #fff; color:#1c304a; }

/* 탭 내용(텍스트 영역) 스타일 */
.tab-content { display: none; /* 기본적으로 모든 내용은 숨김 */ width: 100%; height: 450px; padding: 10px; border: 1px solid #dee2e6; border-radius:10px; box-sizing: border-box; font-size:18px; }

/* 활성화된 탭 내용만 보이도록 설정 */
.tab-content.active { display: block; }

/* 보내기 버튼 스타일 */
.submit-button { margin-top: 20px; padding: 10px 20px; font-size: 18px; cursor: pointer; 
  background-color: #51e3d4; color: #1c304a; border: none; border-radius: 5px; width: 100%;}